home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #1 / Amiga Plus CD - 2000 - No. 1.iso / Tools / Dev / Meshwriter / pov3.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-12-03  |  1.6 KB  |  41 lines

  1. /*
  2. **      $VER: pov3.h 1.00 (13.02.1999)
  3. **
  4. **      Creation date : 29.11.1998
  5. **
  6. **      Description       :
  7. **         Standart saver module for meshwriter.library.
  8. **         Saves the mesh as POV3 ascii file.
  9. **         POV z = Mesh y and POV y = Mesh z
  10. **
  11. **
  12. **      Written by Stephan Bielmann
  13. **
  14. */
  15.  
  16. #ifndef INCLUDE_POV3_H
  17. #define INCLUDE_POV3_H
  18.  
  19. /*************************** Functions ******************************/
  20.  
  21. /********************************************************************\
  22. *                                                                    *
  23. * Name         : write3POV3                                          *
  24. *                                                                    *
  25. * Description  : Writes a standart POV3 ascii file.                  *
  26. *                                                                    *
  27. * Arguments    : povfile IN : An already opened file stream.         *
  28. *                mesh    IN : Pointer to the mesh.                   *
  29. *                                                                    *
  30. * Return Value : RCNOERROR                                           *
  31. *                RCWRITEDATA                                         *
  32. *                                                                    *
  33. * Comment      : No default material !                               *
  34. *                                                                    *
  35. \********************************************************************/
  36. extern ULONG write3POV3(BPTR povfile, TOCLMesh *mesh);
  37.  
  38. #endif
  39.  
  40. /************************* End of file ******************************/
  41.